Merged
Conversation
| ## Automated Code Review | Commit: 3c91947 | Reviewed: 2026-03-22T19:45:00Z | Status: Approved | Critical: 0 | Important: 0 | Suggestions: 0 | AGENTS.md compliance verified for workflow file. The PR adds statuses:write permission to the release workflow. This is minimal, targeted, and correct - semantic-release commonly requires this permission to post commit status updates. No security concerns, logic errors, or policy violations found. CI Run: https://github.com/datenknoten/freundebuch/actions/runs/23411026912 |
158d485 to
af88e71
Compare
The CI workflow's danger job declares `permissions: statuses: write`, which must be granted by the calling workflow. Without this permission, the reusable workflow call fails at parse time even though the danger job would be skipped (it only runs on pull_request events). https://claude.ai/code/session_01K895Mx4NBdynhMVemAD1bv
af88e71 to
310269a
Compare
|
🎉 This PR is included in version 2.68.0 🎉 The release is available on GitHub release Your semantic-release bot 📦🚀 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Added the
statuses: writepermission to the release workflow to enable the workflow to write commit statuses.Changes
statuses: writepermission to the GitHub Actions workflow permissions section in.github/workflows/release.ymlDetails
This permission allows the release workflow to create and update commit statuses on the repository, which may be needed for workflow steps that report build or deployment status back to commits or pull requests.
https://claude.ai/code/session_01K895Mx4NBdynhMVemAD1bv